Revert "Set hard margins to 0 when printing n-up on unix printers"
authorChristian Persch <chpe@gnome.org>
Tue, 1 Dec 2009 18:00:40 +0000 (19:00 +0100)
committerChristian Persch <chpe@gnome.org>
Tue, 1 Dec 2009 18:00:58 +0000 (19:00 +0100)
This reverts commit 215eb8c9f1635551bbfb30dd4e010b6ea3d871b4.

gtk/gtkprintoperation-unix.c

index 19e5644f1decb886f78f22f34b5b23da125c42ab..5940600b76ec48c279e34181fd5a728800743e21 100644 (file)
@@ -545,12 +545,8 @@ finish_print (PrintResponseData *rdata,
       gtk_print_operation_set_print_settings (op, settings);
       priv->print_context = _gtk_print_context_new (op);
 
-      if (gtk_print_settings_get_number_up (settings) < 2) {
-       if (gtk_printer_get_hard_margins (printer, &top, &bottom, &left, &right))
-         _gtk_print_context_set_hard_margins (priv->print_context, top, bottom, left, right);
-      } else {
-       _gtk_print_context_set_hard_margins (priv->print_context, 0, 0, 0, 0);
-      }
+      if (gtk_printer_get_hard_margins (printer, &top, &bottom, &left, &right))
+        _gtk_print_context_set_hard_margins (priv->print_context, top, bottom, left, right);
 
       if (page_setup != NULL &&
           (gtk_print_operation_get_default_page_setup (op) == NULL ||